← Index
NYTProf Performance Profile   
For bin/dpath
  Run on Tue Jun 5 15:31:33 2012
Reported on Tue Jun 5 15:31:50 2012

Filename(eval 25)[/home/ss5/perl5/perlbrew/perls/perl-5.14.1/lib/site_perl/5.14.1/Exception/Class.pm:180]
StatementsExecuted 4 statements in 296µs
Eval Invoked At/home/ss5/perl5/perlbrew/perls/perl-5.14.1/lib/site_perl/5.14.1/Exception/Class.pm line 180
Sibling evals1, 2, 3, 4, 5, 6, 7, 8
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11157µs421µsIterator::X::User_Code_Error::::BEGIN@3Iterator::X::User_Code_Error::BEGIN@3
0000s0sIterator::X::User_Code_Error::::FieldsIterator::X::User_Code_Error::Fields
0000s0sIterator::X::User_Code_Error::::descriptionIterator::X::User_Code_Error::description
0000s0sIterator::X::User_Code_Error::::eval_errorIterator::X::User_Code_Error::eval_error
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Iterator::X::User_Code_Error;
2
32286µs2784µs
# spent 421µs (57+363) within Iterator::X::User_Code_Error::BEGIN@3 which was called: # once (57µs+363µs) by Exception::Class::_make_subclass at line 3
use base qw(Iterator::X);
# spent 421µs making 1 call to Iterator::X::User_Code_Error::BEGIN@3 # spent 363µs making 1 call to base::import
4
512µsour $VERSION = '1.1';
6
717µs1;
8
9sub description
10{
11 return 'An exception was thrown within the user\'s code';
12}
13sub Fields { return ($_[0]->SUPER::Fields, 'eval_error') }
14
15sub eval_error { $_[0]->{eval_error} }
16
17;